#!/usr/bin/env python
import sys
from public import public


@public
def func():
    pass

print(sys.modules[__name__].__all__)  # ['func']
